ComponentOne CollectionView
C1.CollectionView Assembly / C1.CollectionView Namespace / ICollectionViewEx Class / FilterAsync Method / FilterAsync<T>(ICollectionView<T>,String,FilterOperation,Object) Method
The collection view.
The path of the data item to which the filter will be applied.
The filter operation.
The value used in the expression.

In This Topic
    FilterAsync<T>(ICollectionView<T>,String,FilterOperation,Object) Method
    In This Topic
    Filters the data using specified filter parameters.
    Syntax
    'Declaration
     
    Public Overloads Shared Function FilterAsync(Of T As Class)( _
       ByVal collectionView As ICollectionView(Of T), _
       ByVal filterPath As System.String, _
       ByVal filterOperation As FilterOperation, _
       ByVal value As System.Object _
    ) As System.Threading.Tasks.Task
    public static System.Threading.Tasks.Task FilterAsync<T>( 
       ICollectionView<T> collectionView,
       System.string filterPath,
       FilterOperation filterOperation,
       System.object value
    )
    where T: class

    Parameters

    collectionView
    The collection view.
    filterPath
    The path of the data item to which the filter will be applied.
    filterOperation
    The filter operation.
    value
    The value used in the expression.

    Type Parameters

    T
    See Also